home *** CD-ROM | disk | FTP | other *** search
- Path: inforamp.net!ts26-13
- From: rmorin@inforamp.net (Randy Charles Morin)
- Newsgroups: comp.lang.c++
- Subject: Re: Help with undefined symbol error
- Date: Tue, 06 Feb 96 22:29:55 GMT
- Organization: MiddleWorld SoftWare
- Message-ID: <4f8kf6$ffl@sam.inforamp.net>
- References: <1996Feb5.180731.15485@schbbs.mot.com>
- NNTP-Posting-Host: ts26-13.tor.inforamp.net
- X-Newsreader: News Xpress Version 1.0 Beta #4
-
- In article <1996Feb5.180731.15485@schbbs.mot.com>, george_helm <ghelm> wrote:
- >I am using Borland c++ 3.1
- >I get an error "undefined symbol _MAIN" (upper case).
- >I change case sensitivity to non-sensitive.
- >I get an error "undefinded symbol _main" (lower case).
- >Does _MAIN and _main both exist somewhere or am I creating this condition
- >by toggling the case sensitivity and therefore chasing my tail ?
- >Have read the faq's and if it is there I missed it.
- >Can someone please point me in the right direction.
- >
- >Thanks
- >George Helm
- >ghelm@mot1.phx.mcd.mot.com -or- qwuu93a@prodigy.com
- >
-
- Your chasing your tail.
- I don't know how experienced you are with C,
- but you need to have a main(...) function in your program.
- If you don't, your linker throws up.
- Main is the entry point into your program.
-
- Agrivar
-